From: Glenn Morris Date: Sat, 11 Jul 2009 19:32:00 +0000 (+0000) Subject: (Regexp Backslash): Fix typo. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~11514 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=349c5736221a49ed32f554e153d893b02803841e;p=emacs.git (Regexp Backslash): Fix typo. --- diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 2e77b14c941..fc709b05d14 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,7 @@ +2009-07-11 Glenn Morris + + * searching.texi (Regexp Backslash): Fix typo. + 2009-07-11 Kevin Ryde * hooks.texi (Standard Hooks): Fix cross-references. diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi index 146d00cfe16..2b89a89c3e9 100644 --- a/doc/lispref/searching.texi +++ b/doc/lispref/searching.texi @@ -708,7 +708,7 @@ If a particular grouping construct in the regular expression was never matched---for instance, if it appears inside of an alternative that wasn't used, or inside of a repetition that repeated zero times---then the corresponding @samp{\@var{digit}} construct never matches -anything. To use an artificial example,, @samp{\(foo\(b*\)\|lose\)\2} +anything. To use an artificial example, @samp{\(foo\(b*\)\|lose\)\2} cannot match @samp{lose}: the second alternative inside the larger group matches it, but then @samp{\2} is undefined and can't match anything. But it can match @samp{foobb}, because the first